home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_jr / putenv < prev    next >
Text File  |  1994-08-25  |  512b  |  24 lines

  1. putenv:
  2.  
  3. Synopsis:    Change or add a value to the environment
  4.  
  5. Syntax:        putenv ( STRING )
  6.  
  7. Description:
  8.  
  9.     putenv takes a single argument, STRING, of the form:
  10.  
  11.         "NAME=VALUE"
  12.  
  13.     putenv make the value of the environment variable NAME equal
  14.     to VALUE by altering an existing variable or creating a new
  15.     one. 
  16.  
  17.     Exactly how putenv behaves is depends upon the underlying
  18.     operating system implementation. 
  19.  
  20.     On most Unix systems putenv will return  non-zero if an error
  21.     occurred, and zero otherwise.
  22.  
  23. See Also: getenv
  24.